Socket
Socket
Sign inDemoInstall

@types/pino

Package Overview
Dependencies
3
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/pino

TypeScript definitions for pino


Version published
Weekly downloads
476K
increased by5.51%
Maintainers
1
Install size
720 kB
Created
Weekly downloads
 

Package description

What is @types/pino?

@types/pino provides TypeScript type definitions for the Pino logging library, which is a fast and low-overhead logging library for Node.js applications.

What are @types/pino's main functionalities?

Basic Logging

This feature allows you to create a basic logger instance and log messages at the 'info' level.

const pino = require('pino');
const logger = pino();
logger.info('Hello, world!');

Custom Log Levels

This feature allows you to define custom log levels for more granular logging.

const pino = require('pino');
const logger = pino({
  customLevels: {
    foo: 35
  }
});
logger.foo('This is a custom log level');

Child Loggers

This feature allows you to create child loggers that inherit properties from the parent logger.

const pino = require('pino');
const logger = pino();
const child = logger.child({ a: 'property' });
child.info('Hello from child logger');

Log Redaction

This feature allows you to redact sensitive information from logs.

const pino = require('pino');
const logger = pino({
  redact: ['req.headers.authorization']
});
logger.info({ req: { headers: { authorization: 'secret' } } }, 'Request received');

Other packages similar to @types/pino

Readme

Source

Installation

npm install --save @types/pino

Summary

This package contains type definitions for pino (https://github.com/pinojs/pino.git).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pino

Additional Details

  • Last updated: Thu, 23 Aug 2018 17:24:04 GMT
  • Dependencies: stream, http, events, node
  • Global values: none

Credits

These definitions were written by Peter Snider https://github.com/psnider, BendingBender https://github.com/BendingBender, Christian Rackerseder https://github.com/screendriver, GP https://github.com/paambaati.

FAQs

Last updated on 23 Aug 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc